home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1995 November / EnigmA AMIGA RUN 02 (1995)(G.R. Edizioni)(IT)[!][issue 1995-11][Skylink CD].iso / earcd / util / misc / halt.lzh / halt / smakefile < prev    next >
Makefile  |  1995-10-06  |  493b  |  31 lines

  1.  
  2. OBJS = halt_library.o unmount.o
  3.  
  4. all: libs:halt.library shutdown sdwarn
  5.  
  6. shutdown: shutdown.c
  7.           sc LINK shutdown.c
  8.  
  9. sdwarn:   sdwarn.c
  10.           sc LINK sdwarn.c
  11.  
  12. libs:halt.library: $(OBJS)
  13.       slink with <<
  14. LIBPREFIX _LIB 
  15. LIBFD halt.fd 
  16. to halt.library 
  17. FROM lib:libent.o lib:libinit.o $(OBJS)
  18. lib lib:sc.lib
  19. noicons
  20. SD 
  21. libversion 2 librevision 0
  22. <
  23.       slink from halt.library to libs:halt.library ND noicons
  24.  
  25. clean:
  26.     del \#?.o halt.library
  27.  
  28. .c.o:
  29.     sc libcode nostackcheck $<
  30.  
  31.